.olpx-scope {
    background-color: #0a0a0a;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

.olpx-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Yellow Underline Logic */
.olpx-heading {
    position: relative;
    display: inline-block;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 45px;
    padding-bottom: 15px;
}

.olpx-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 5px;
    background: #ffcc00;
    border-radius: 10px;
}

.olpx-center-head {
    text-align: center;
    width: 100%;
}

.olpx-center-head .olpx-heading::after {
    left: 50%;
    transform: translateX(-50%);
}

.olpx-heading span {
    color: #ffcc00;
}

/* Hero Section */
.olpx-hero {
    position: relative;
    height: 85vh;
    background: url('') center/cover;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.olpx-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.olpx-hero-content {
    position: relative;
    z-index: 2;
    /* max-width: 800px; */
}

.olpx-badge {
    color: #ffcc00;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}

.olpx-main-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.olpx-main-title span {
    color: #ffcc00;
}

.olpx-hero-desc {
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 35px;
}

/* Buttons */
.olpx-hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.olpx-btn-primary {
    background: #ffcc00;
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    transition: 0.3s;
}

.olpx-btn-white {
    border: 2px solid #fff;
    color: #fff;
    padding: 13px 35px;
    text-decoration: none;
    font-weight: 800;
    border-radius: 4px;
    transition: 0.3s;
}

.olpx-btn-primary:hover {
    background: #fff;
    transform: translateY(-3px);
}

.olpx-btn-white:hover {
    background: #fff;
    color: #000;
}

/* Section Control */
.olpx-section {
    padding: 100px 0;
}

.olpx-bg-alt {
    background-color: #050505;
}

/* Split Layout */
.olpx-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.olpx-p {
    color: #aaa;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.olpx-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.olpx-h-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
}

.olpx-h-item i {
    color: #ffcc00;
}

/* Image Styling */
.olpx-image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #333;
}

.olpx-image-card img {
    width: 100%;
    display: block;
    opacity: 0.8;
    transition: 0.5s;
}

.olpx-image-card:hover img {
    opacity: 1;
    scale: 1.05;
}

.olpx-img-tag {
    position: absolute;
    bottom: 0;
    background: #ffcc00;
    color: #000;
    width: 100%;
    text-align: center;
    padding: 8px;
    font-weight: 800;
    font-size: 12px;
}

/* Product Grid */
.olpx-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.olpx-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s;
}

.olpx-card:hover {
    border-color: #ffcc00;
    transform: translateY(-10px);
}

.olpx-card-img {
    height: 200px;
    overflow: hidden;
}

.olpx-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.olpx-card-body {
    padding: 25px;
}

.olpx-card-body h3 {
    color: #ffcc00;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.olpx-card-body p {
    color: #999;
    font-size: 0.95rem;
}

/* App Row */
.olpx-app-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.olpx-app-card {
    background: #111;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid #222;
    transition: 0.3s;
}

.olpx-app-card i {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 15px;
}

.olpx-app-card h4 {
    font-weight: 700;
}

.olpx-app-card:hover {
    background: #ffcc00;
}

.olpx-app-card:hover i,
.olpx-app-card:hover h4 {
    color: #000;
}

/* Feature Bar */
.olpx-feature-bar {
    background: #ffcc00;
    color: #000;
    padding: 60px 0;
}

.olpx-bar-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.olpx-bar-item h4 {
    font-size: 1.8rem;
    font-weight: 900;
}

.olpx-bar-item p {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .olpx-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .olpx-highlight-grid {
        justify-content: center;
    }

    .olpx-hero {
        text-align: center;
        padding-top: 120px;
    }

    .olpx-hero-actions {
        justify-content: center;
    }

    .olpx-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .olpx-hero {
        height: auto;
        padding-bottom: 80px;
    }

    .olpx-btn-primary,
    .olpx-btn-white {
        width: 100%;
    }

    .olpx-section {
        padding: 60px 0;
    }
}